home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / PATHSET.HLP < prev    next >
Text File  |  1988-01-11  |  2KB  |  40 lines

  1. \ PATHSET.HLP   Words used to set the path of a file.   by Tom Zimmer
  2.  
  3.  
  4. flhndl          ( --- a1 )
  5.         A Constant/variable that returns the address of the handle
  6.         we are working with.
  7.  
  8. ?drive.extract  ( handle --- drive-value )
  9.         Given handle, return drive-value, the drive specified in
  10.         handle, or return the current drive if no drive was specified
  11.         in handle.
  12.  
  13. ?drive.prepend  ( drive-value handle --- )
  14.         Given drive-value and handle, prepend the drive-value into
  15.         handle, as letter followed by ":".
  16.  
  17. pathhndl        ( --- a1 )
  18.         A handle that returns a1 the address of the handle that
  19.         contains the default drive path.
  20.  
  21. prepend.path    ( handle --- f1 )
  22.         Prepend the default drive and path to handle, and return f1
  23.         the boolean that tells if we were successful.
  24.  
  25. viewpath         ( --- a1 )
  26.         A handle that holds the path for the compiled files in FF.
  27.  
  28. setview         ( | name --- )
  29.         Set the path in VIEWPATH for subequent VIEW or LL or HELP
  30.         commands. Use one of the following formats:
  31.  
  32.                 SETVIEW <enter>         \ makes current dir the default.
  33.                 SETVIEW C: <enter>      \ Drive C: root is the default.
  34.                 SETVIEW \FF\ <enter>    \ current drive, path \FF\.
  35.                 SETVIEW D:\FF\ <enter>  Drive D:, path \FF\.
  36.  
  37.         When specifying a path, be sure to include the trailing \
  38.         character in creating your path.
  39.  
  40.